home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Views
/
Tiled Views
/
TiledPane.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
475b
|
34 lines
// TiledPane.h
#ifndef TiledPane_h
#define TiledPane_h
#ifndef TiledView_h
#include "TiledView.h"
#endif
#ifndef RectangularPane_h
#include "RectangularPane.h"
#endif
#ifndef ListLink_h
#include "ListLink.h"
#endif
class TiledPane: public RectangularPane
{
friend class TiledView;
private:
ListLink<TiledPane> link;
public:
TiledPane()
: link( this )
{}
int32 proposedSize;
TiledPane *shuffleNext;
Rectangle32 proposedBounds;
};
#endif